home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
Borland Visual dBASE Professiona v7.0
/
DATA1.CAB
/
Sample_dBASE
/
Mugs
/
Mugs.cdm
< prev
next >
Wrap
Text File
|
1997-11-20
|
830b
|
39 lines
//--------------------------------------------------------------
//
// Mugs.cdm - Custom Data Module for Mugs Application
//
// Requires BDE Alias: MUGS
//
// Visual dBASE Samples Group
//
// $Revision: 1.0 $
//
// Copyright (c) 1997, Borland International, Inc.
// All rights reserved.
//
//---------------------------------------------------------------
class mugsDataModule of DATAMODULE custom
this.SESSIONMUGS = new SESSION()
this.SESSIONMUGS.parent = this
with (this.SESSIONMUGS)
left = 2
top = 1
lockRetryInterval = 0
endwith
this.DBMUGS = new DATABASE()
this.DBMUGS.parent = this
with (this.DBMUGS)
left = 6
top = 1
databaseName = "MUGS"
session = form.SESSIONMUGS
active = true
endwith
endclass